github.com/refraction-networking/utls.clientHelloMsg.pskBinders (field)

19 uses

	github.com/refraction-networking/utls (current package)
		handshake_client.go#L541: 	hello.pskBinders = [][]byte{make([]byte, cipherSuite.hash.Size())}
		handshake_client_tls13.go#L380: 			hello.pskBinders = nil
		handshake_messages.go#L98: 	pskBinders              [][]byte
		handshake_messages.go#L358: 				for _, binder := range m.pskBinders {
		handshake_messages.go#L415: 	for _, binder := range m.pskBinders {
		handshake_messages.go#L436: 	if len(pskBinders) != len(m.pskBinders) {
		handshake_messages.go#L439: 	for i := range m.pskBinders {
		handshake_messages.go#L440: 		if len(pskBinders[i]) != len(m.pskBinders[i]) {
		handshake_messages.go#L444: 	m.pskBinders = pskBinders
		handshake_messages.go#L694: 				m.pskBinders = append(m.pskBinders, binder)
		handshake_messages.go#L744: 		pskBinders:                       slices.Clone(m.pskBinders),
		handshake_server_tls13.go#L348: 	if len(hs.clientHello.pskIdentities) != len(hs.clientHello.pskBinders) {
		handshake_server_tls13.go#L437: 		if !hmac.Equal(hs.clientHello.pskBinders[i], pskBinder) {
		u_pre_shared_key.go#L273: 	private.pskBinders = e.Binders // set the placeholder to the private Hello
		u_pre_shared_key.go#L292: 		for _, binder := range private.pskBinders {
		u_public.go#L422: 			pskBinders:              chm.PskBinders,
		u_public.go#L473: 			PskBinders:                       chm.pskBinders,